From: Andreas Schwab Date: Fri, 7 Nov 2003 16:08:53 +0000 (+0000) Subject: (autoconf-font-lock-keywords): Also highlight AH_*. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~25041 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=a65c09661b8f059f302f34d60c6fd17ccc68a18e;p=emacs.git (autoconf-font-lock-keywords): Also highlight AH_*. --- diff --git a/lisp/progmodes/autoconf.el b/lisp/progmodes/autoconf.el index 4edac8a5318..09342e463c9 100644 --- a/lisp/progmodes/autoconf.el +++ b/lisp/progmodes/autoconf.el @@ -1,10 +1,10 @@ ;;; autoconf.el --- mode for editing Autoconf configure.in files -;; Copyright (C) 2000 Free Software Foundation, Inc. +;; Copyright (C) 2000, 2003 Free Software Foundation, Inc. ;; Author: Dave Love ;; Keywords: languages -;; $Revision: 1.4 $ +;; $Revision: 1.5 $ ;; This file is part of GNU Emacs. @@ -50,7 +50,7 @@ "AC_\\(SUBST\\|DEFINE\\(_UNQUOTED\\)?\\)(\\(\\sw+\\)") (defvar autoconf-font-lock-keywords - `(("A[CM]_\\sw+" . font-lock-keyword-face) + `(("A[CHM]_\\sw+" . font-lock-keyword-face) (,autoconf-definition-regexp 3 font-lock-function-name-face) ;; Are any other M4 keywords really appropriate for configure.in,